home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Amiga Format CD 40
/
Amiga Format CD40 (1999-05-11)(Future Publishing)(GB)(Track 1 of 3)[!][issue 1999-06].iso
/
-in_the_mag-
/
recent_reviews
/
newmouse11
/
newmouse.h
< prev
Wrap
C/C++ Source or Header
|
1999-03-31
|
545b
|
25 lines
/*
* Include file for the NewMouse standard way of handling wheeled mice.
*
* Copyright (c) 1999 by Alessandro Zummo. All Rights Reserved.
*/
#ifndef NEWMOUSE_H
#define NEWMOUSE_H
#define IECLASS_NEWMOUSE (0x16) /* IECLASS_MAX + 1 as of V40 */
/* These are issued both under IECLASS_NEWMOUSE and IECLASS_RAWKEY */
/* by the NewMouse driver */
#define NM_WHEEL_UP (0x7A)
#define NM_WHEEL_DOWN (0x7B)
#define NM_WHEEL_LEFT (0x7C)
#define NM_WHEEL_RIGHT (0x7D)
#define NM_BUTTON_FOURTH (0x7E)
#endif /* NEWMOUSE_H */